runtime.evacDst.i (field)
17 uses
runtime (current package)
map.go#L1250: i int // key/elem index into b
map.go#L1327: if dst.i == abi.MapBucketCount {
map.go#L1329: dst.i = 0
map.go#L1333: dst.b.tophash[dst.i&(abi.MapBucketCount-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map.go#L1344: dst.i++
map_fast32.go#L451: if dst.i == abi.MapBucketCount {
map_fast32.go#L453: dst.i = 0
map_fast32.go#L457: dst.b.tophash[dst.i&(abi.MapBucketCount-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_fast32.go#L468: dst.i++
map_fast64.go#L455: if dst.i == abi.MapBucketCount {
map_fast64.go#L457: dst.i = 0
map_fast64.go#L461: dst.b.tophash[dst.i&(abi.MapBucketCount-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_fast64.go#L478: dst.i++
map_faststr.go#L470: if dst.i == abi.MapBucketCount {
map_faststr.go#L472: dst.i = 0
map_faststr.go#L476: dst.b.tophash[dst.i&(abi.MapBucketCount-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_faststr.go#L482: dst.i++
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |